﻿body {
    background: linear-gradient(135deg, #6c63ff, #48c6ef);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Tahoma', sans-serif;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
    padding: 35px;
    text-align: center;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-card h2 {
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.login-card p {
    margin-bottom: 25px;
    color: #777;
    font-size: 15px;
}

.form-control {
    border-radius: 10px;
    padding-right: 40px;
}

.input-group-text {
    border-radius: 10px 0 0 10px;
    background: #6c63ff;
    color: #fff;
}

.btn-login {
    border-radius: 10px;
    font-weight: bold;
    background: #6c63ff;
    border: none;
    transition: 0.3s;
}

    .btn-login:hover {
        background: #4a47d5;
    }

.small-text {
    margin-top: 15px;
    font-size: 14px;
}

    .small-text a {
        color: #6c63ff;
        text-decoration: none;
    }

        .small-text a:hover {
            text-decoration: underline;
        }

.logo {
    font-size: 60px;
    color: #6c63ff;
    margin-bottom: 15px;
}
