/* Importing fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Resetting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0f1c 0%, #101d2e 100%);
    color: #e0e6ed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Wrapper / Card */
.wrapper {
    max-width: 380px;
    width: 100%;
    padding: 45px 35px;
    background: rgba(20, 28, 45, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 136, 255, 0.25);
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 136, 255, 0.35);
}

/* Logo */
.logo {
    width: 90px;
    margin: 0 auto 20px;
}

.logo img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 136, 255, 0.6), 0 0 30px rgba(0, 136, 255, 0.2);
}

/* Title */
.wrapper .name {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(90deg, #03A9F4, #00BCD4, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* Input fields */
.form-field {
    margin-bottom: 20px;
}

.form-field input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(3, 169, 244, 0.3);
    border-radius: 8px;
    background: #1c2736;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-field input:focus {
    outline: none;
    border-color: #03A9F4;
    box-shadow: 0 0 12px rgba(3, 169, 244, 0.5);
}

/* Button */
.btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #03A9F4, #0288D1);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(3, 169, 244, 0.4);
}

.btn:hover {
    background: linear-gradient(135deg, #0288D1, #0277BD);
    box-shadow: 0 10px 25px rgba(3, 169, 244, 0.5);
    transform: translateY(-2px);
}

/* Footer text */
.text-center {
    text-align: center;
    color: #cfd8dc;
    font-size: 0.9rem;
    margin-top: 18px;
}

.text-center a {
    color: #03A9F4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.text-center a:hover {
    color: #00BCD4;
    text-shadow: 0 0 8px rgba(3, 169, 244, 0.6);
}
