*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #fac43b;
}


.container {
    border-radius: 10px;
    padding: 0 15px 15px 15px;
    width: 400px;
    font-family: Arial, sans-serif;
    margin: auto;
    transition: background-color 0.5s, color 0.5s;
    background-color: #000; /* Default to light mode */
    color: #ffffff; /* Default text color */
    box-shadow: 0px 0px 15px black;
    
}

.toggle-btn {
    /* padding: 15px; */
    /* color: #b6b3b3; */
    border: none;
    color: #000;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 5px;
    outline: none;

}

.dark-mode {
    background-color: #333;
    color: #fff;
}

.light-mode {
    background-color: #fff;
    color: #000;
}


.sp{
    padding-bottom: 7px;
    padding-top: 10px;
    font-weight: bold;
}
.sp-2{
    font-size: smaller;
    color: #a19f9f;
    font-weight: bold;
}

/* .ink{
    width: 95%;
    margin: auto;
} */

.butn, input{
    width: 100%;
    border-radius: 5px;
    border: none;
    outline: none;
}
input{
    background-color: #dbd8d8;
    padding: 10px 10px;
}
input::placeholder{
    font-size: large;
    font-weight: bolder;
    color: black;
}
.butn{
    padding: 10px 0;
    background-color: #fac43b;
    font-weight: bolder;
}
.butn:hover{
   background-color: #fac43bce; 
}
label{
    font-size: small;
    font-weight: bolder;
}


.error-message{
    font-size: small;
    font-weight: bolder;
    color: rgb(214, 3, 3);
}

.message{
    font-size: small;
    font-weight: bolder;
}

.space{
    height: 10px;
}

.pass{
    padding-bottom: 5px;
}

.copy{
    font-size: smaller;
    font-weight: bolder;
}

