.container-login {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-card {
    width: 100%;
    max-width: 400px;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;

    min-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-container {
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-bottom: 2rem;
}

.jastru-logo {
    width: 150px;
    margin-top: 35px;
    margin-bottom: 35px;
}

.h2-login {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.highlight {
    color: #10abcf;
    font-weight: bold;
}

.subtitle {
    text-align: center;
    color: #bbbbbb;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.input-field {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 1rem;
    border-radius: 20px;
    outline: none;
    color: #6b7280;
    background-color: #f0f0f0;
}

.input-field:focus {
    border-color: #0099ff;
}

.password-container {
    position: relative;
    width: 100%;
}

.password-container .input-field {
    width: 100%;
    padding-right: 40px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.toggle-password img {
    width: 20px;
    height: 20px;
}

.btn-primary {
    width: 100%;
    background-color: #10abcf;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #007acc;
}

.social-text {
    text-align: center;
    font-size: 0.8rem;
    margin: 1rem 0;
    color: #bbbbbb;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 45px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 8px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    background-color: white;
    transition: 0.3s;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.social-btn img.social-icon {
    width: 20px;
    height: 20px;
}

.social-btn:hover {
    background-color: #f0f0f0;
}

.facebook {
    border: 1px solid #e9e9e9;
    color: #bbbbbb;
    font-size: small;
    font-weight: 400;
}

.google {
    border: 1px solid #e9e9e9;
    color: #bbbbbb;
    font-size: small;
    font-weight: 400;
}

.link-group {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-top: 1rem;
}

.link-group a {
    color: #bbbbbb;
    text-decoration: none;
}

.link-group a:hover {
    text-decoration: underline;
}

.terms {
    text-align: center;
    font-size: 0.75rem;
    color: #bbbbbb;
    margin-top: 1rem;
}

.terms a {
    color: #f97316;
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

.eye-icon {
    margin-bottom: 15px;
    margin-right: 7px;
    opacity: 35%;
}
