@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
}
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    background: url("../img/preview.jpg") no-repeat center center fixed;
    background-size: cover;
    background-position: top;
}
.fade-out {  
    opacity: 0;  
    transition: opacity 1s ease;  
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation-name: containerMove;
    animation-duration: 1s;
    height: 380px;
    width: 350px;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(0, 0, 0, 0.5);
    border-right: 1px solid rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    transition: 1s;
}
@keyframes containerMove {
    0% {
        transform: translate(0,40px);
    }
    100% {
        transform: translate(0,0);
    }
}
.container:hover{
    transform: scale(1.03);
}
.container h3{
    color:rgba(0, 0, 0, 0.801);
}
.container .input_box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
.container .input_box:hover{
    transform: scale(1.01);
}
.container .input_box label{
    margin-bottom: 5px;
    color: rgba(0, 0, 0, 0.719);
    font-size: 13px;
}
.container .input_box input{
    color: rgba(0, 0, 0, 0.719);
    font-size: 18px;
    height: 35px;
    width: 250px;
    background: rgba(255, 255, 255, 0.788);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    padding: 0 10px;
}
.container .input_box input:focus{
    border: 1px solid rgba(0, 0, 0, 0.5);
}
.container .btn{
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: start;
}
.container .btn button:hover{
    transform: scale(1.03);
}
.container .btn button{
    width: 120px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(99, 153, 216, 0.842);
    color: aliceblue;
    border-radius: 5px;
}
.container .btn button:nth-of-type(2){
    margin-left: 10px;

}
nav {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    animation-name: navDown;
    animation-duration: 1s;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
}
@keyframes navDown {
    0% {
        transform: translate(0, -100px);
    }
    100% {
        transform: translate(0, 0);
    }
}
nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #a8a8a8;
}

.container h2 {
    margin-top: 10px; 
}

.profile-info {
    color: rgba(255, 255, 255, 0.801);
    text-align: center;
}

.profile-info button {
    width: 120px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(99, 153, 216, 0.842);
    color: aliceblue;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.profile-info button:hover {
    transform: scale(1.03);
}
.container .avatar {
    margin-top: 10px;
    margin: 0 10px;
    width: 70px;
    height: 70px;
    box-shadow: var(--shadow);
    border-radius: 15%;
    overflow: hidden;
}
.container .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container p {
    color: rgba(0, 0, 0, 0.719);
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: center;
}

.container p a {
    color: rgba(0, 0, 0, 0.842);
    text-decoration: none;
}

.container p a:hover {
    text-decoration: underline;
}