﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #000f31;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-size: 1rem;
    flex-direction: column;
    padding: 0 20px;
}

.form {
    background-color: #010525;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.75);
    border: 2px solid rgba(255, 69, 0, 0.75);
    width: 100%;
    max-width: 400px;
    animation: fadeIn 0.5s ease-out forwards;
    position: relative;
    z-index: 1;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 0.5rem;
    padding: 0.5rem;
    border: 2px solid #000000;
    margin-bottom: 1.5rem;
}

.input-container i {
    color: #000000;
    margin-right: 10px;
    font-size: 1.2rem;
}

input {
    flex: 1;
    border: none;
    background: none;
    font-size: 1rem;
    outline: none;
}

.submit {
    width: 100%;
    padding: 1rem;
    background-color: #FF4500;
    border: none;
    border-radius: 0.5rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease-in-out;
}

.submit:hover {
    background-color: #FF6347;
}

.submit:active {
    transform: scale(0.98);
}

.signup-link {
    font-size: 0.875rem;
    text-align: center;
    color: #6B7280;
    margin-top: 1rem;
}

.signup-link a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
