body {
    width: 100%;
    height: 100vh;
    display: flex;
    background: linear-gradient(to right, #242424, #000000);
    margin: 0;
    align-items: center;
    justify-content: center;
    font-family:'Times New Roman', Times, serif !important;
    font-weight: lighter !important;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(28, 28, 29, 0.3);
    width: 350px;
}

h1 {
    font-size: 32px;
    color: #333;
    text-shadow: 0 0px 10px rgba(255, 64, 245, 0.342);
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

label {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    color: #444;
}

input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 2px solid #ffd900;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

input:focus {
    border-color: #ff5100;
    box-shadow: 0 0px 10px rgba(255, 64, 245, 0.342);
}

button {
    margin-top: 20px;
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
    color: #e7e8ee;
    background-color: #161515;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #444;
    transform: scale(1.05);
}

.login-link {
    margin-top: 15px;
    font-size: 16px;
}

.login-link a {
    color: #ff5100;
    font-weight: bold;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}
