/* Blue Theme */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Roboto',sans-serif;
    background:linear-gradient(135deg,#0f172a,#1e3a8a,#2563eb);
    color:white;
    text-align:center;
    min-height:100vh;
}

body,
h1,
h2,
h3,
p,
a,
label,
span,
li,
footer{
    color:white;
}

#coder{
    width:200px;
    height:200px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #60a5fa;
    margin:20px auto;
    display:block;
    box-shadow:0 0 25px rgba(96,165,250,.5);
}

.status{
    font-size:3rem;
    margin-top:30px;
    color:white;
}

.status2{
    font-size:1.2rem;
    color:white;
    margin-bottom:20px;
}

.btn{
    background:#3b82f6;
    color:white;
    border:none;
    padding:12px 24px;
    border-radius:10px;
    cursor:pointer;
    font-size:1rem;
    transition:0.3s;
}

.btn:hover{
    background:#60a5fa;
    transform:translateY(-3px);
}

.container{
    width:90%;
    max-width:450px;
    margin:30px auto;
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(12px);
    padding:30px;
    border-radius:20px;
    box-shadow:0 8px 30px rgba(0,0,0,.25);
}

.container h2{
    margin-bottom:20px;
}

input{
    width:100%;
    padding:12px;
    border:none;
    border-radius:8px;
    outline:none;
    background:white;
    color:black;
}

#submit{
    width:100%;
    padding:12px;
    background:#2563eb;
    color:white;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-size:1rem;
}

#submit:hover{
    background:#1d4ed8;
}

#link{
    color:white;
    text-decoration:none;
}

#link:hover{
    color:white;
    text-decoration:underline;
}

nav{
    margin:30px 0;
}

nav ul{
    list-style:none;
}

nav li{
    display:inline-block;
    margin:0 10px;
}

nav a{
    text-decoration:none;
    color:white;
    background:#1e40af;
    padding:10px 18px;
    border-radius:8px;
    transition:0.3s;
}

nav a:hover,
.current a{
    background:#60a5fa;
}

.footer{
    margin-top:50px;
    padding:20px;
    background:rgba(0,0,0,0.2);
}
