﻿* {
    font-family: 'Times New Roman', serif;
    font-size: 14px;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.container {
    width: 400px;
    margin: 100px auto;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    border-radius: 8px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: bold;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    transition: background-color 0.3s ease, border 0.2s ease;
}

input:focus {
    outline: none;
    border-color: #fbc02d;
    background-color: #fff9c4;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(to bottom, #3C0753, #720455);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
}

    button:hover {
        background: linear-gradient(to top, #3C0753, #720455);
    }

#message {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 25px;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

    #message.success {
        background-color: #4CAF50;
    }

    #message.error {
        background-color: #f44336;
    }

.link {
    text-align: left;
    margin-top: 15px;
}

    .link a {
        color: #720455;
        text-decoration: none;
        font-weight: bold;
    }

        .link a:hover {
            text-decoration: underline;
        }