body {
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.video-background {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-container {
    position: relative;
    z-index: 1;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    text-align: center;
}

.form-container h2 {
    margin-bottom: 20px;
    color: #fa4216;
}

.form-control {
    border-color: #fa4216;
}

.btn-primary {
    background-color: #fa4216;
    border-color: #fa4216;
}

.social-buttons {
    margin-top: 20px;
}

.social-buttons .btn-facebook {
    background-color: #3b5998; /* Facebook blue */
    border-color: #3b5998;
}

.social-buttons .btn-google {
    background-color: #dd4b39; /* Google red */
    border-color: #dd4b39;
}

.social-buttons button {
    position: relative;
    padding-left: 40px;
}

.social-buttons button i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.link {
    margin-top: 20px;
    color: #fa4216;
}

.logo {
    margin-bottom: 20px;
}
