@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

html, body {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('foto/bg-login.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    font-family: 'Poppins', sans-serif;
}

.container {
    height: 100%;
    align-content: center;
}

.card {
    height: auto;
    margin-top: auto;
    margin-bottom: auto;
    width: 400px;
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 15px !important;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo-container img {
    width: 80px;
    margin-bottom: 10px;
}

.brand-name {
    color: #FF5733;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.brand-tagline {
    color: #666;
    font-size: 14px;
}

.card-header {
    background: transparent !important;
    border: none !important;
    padding-top: 30px;
}

.card-header h3 {
    color: #333;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
}

.input-group-prepend span {
    width: 50px;
    background-color: #FF5733;
    color: white;
    border: 0 !important;
}

.form-control {
    height: 45px;
    border-radius: 0 5px 5px 0 !important;
}

.form-control:focus {
    box-shadow: none;
    border-color: #FF5733;
}

.login_btn {
    background-color: #FF5733;
    color: white;
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    font-weight: 500;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.login_btn:hover {
    background-color: #ff3d00;
    color: white;
    transform: translateY(-2px);
}

.register-link {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.register-link a {
    color: #FF5733;
    text-decoration: none;
    font-weight: 500;
}

.register-link a:hover {
    text-decoration: underline;
}

.social-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.social-divider:before,
.social-divider:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #ddd;
}

.social-divider:before {
    left: 0;
}

.social-divider:after {
    right: 0;
}

.social-icons {
    text-align: center;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #FF5733;
    transform: translateY(-2px);
}

.social-icons a i {
    color: #666;
    font-size: 18px;
}

.social-icons a:hover i {
    color: white;
}