* {
    margin: 0;
    padding: 0;
    
    font-family: Arial, sans-serif;
    color:white;

}

:root{

    background: linear-gradient(45deg, #1a1a2e, #16213e);
}
.container {
    position: relative;
    width: 100%;
    max-width: 900px;
    padding: 20px;
}

.login-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.login-box h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.textbox {
    position: relative;
    margin-bottom: 30px;
}

.textbox input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    outline: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
}

.textbox input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.btn {
    width: 100%;
    padding: 12px;
    background: #0f3460;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #1a4d8c;
}

p {
    color: #fff;
    text-align: center;
    margin-top: 20px;
}

a {
    color: #00b4d8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.arrow{
    width: 0; 
    height: 0; 
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 20px solid #fff;
    margin: 0 auto;
    transform:rotate(90deg);
}
.image_container{
    display:flex;
    justify-content:center;
    margin-bottom:20px;
    align-items: center;
    gap:20px;
}
#image_1, #image_2{
    display:none;
}
.flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}