* {
    box-sizing: border-box;
    font-family: var(--font-body);
}


body {
    margin: 0;
    height: 100vh;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    color: #333;
}

.card {
    background-color: #fff;
    border-radius: 12px;
    width: 360px;
    padding: 40px 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--color-bg);
    /*background-color: #1E3A8A;*/ /* violet color */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    font-style: var(--font-heading);
    color: var(--color-primary);
}

.subtitle {
    color: var(--color-secondary);
    font-size: 13px;
    margin-bottom: 25px;
}

.title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
    position: relative;
}

label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
}

input {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.change-link {
    color: #1f3b87;
    font-size: 13px;
    text-decoration: none;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(25%);
}

.forgot-link {
    display: block;
    text-align: right;
    margin-top: 6px;
    margin-bottom: 18px;
    font-size: 13px;
    color: #1f3b87;
    text-decoration: none;
}

.sign-in-btn {
    width: 100%;
    background: var(--color-bg);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    margin-top: 5px;
}

    .sign-in-btn:hover {
        background-color: #2b4cb2;
    }

.bottom-text {
    margin-top: 20px;
    font-size: 13px;
    color: #555;
}

    .bottom-text a {
        color: #1f3b87;
        text-decoration: none;
        font-weight: 500;
    }

svg {
    width: 20px;
    height: 20px;
    fill: white;
}
