.box {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box2 {
    display: none;
}

.deposite h2 {
    text-align: center;
}

.deposite:hover {
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.deposite{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 300px;
    padding: 90px 20px;
    box-shadow: 2px 3px 3px 5px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.box1 {
    line-height: 40px;
}

.box1 label {
    font-weight: 600;
    color: #2d3e50;
    font-size: 18px;
}

.box1 input {
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.box1 input:focus {
    border-color: #1abc9c;
    outline: none;
    box-shadow: 0 0 6px rgba(26, 188, 156, 0.4);
}
.box1 button{
    width: 100%;
}
.box2 input{
        width: 100%;
        padding: 10px 14px;
        margin-bottom: 20px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 15px;
        transition: all 0.3s ease;
}
.box2 #pass{
    margin-top: 20px;
}
.box4{
    display: flex;
    justify-content: space-between;
    gap: 20px
}
.box4 button{
    width: 100%;
}
#error_msg {
    display: none;
    color: red;
}

#pass_check {
    display: none;
    color: red;
}
.box3{
    display: none;
    color: green;
    text-align: center;
}