
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container_body {
    width: 400px;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 100px;
    height: 500px;
    position: relative;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

header {
    background: #1f1f1f;
    color: #fff;
    padding-top: 10px 20px;
    min-height: 70px;
    border-bottom: #0779e4 3px solid;
}

header .logo {
    float: left;
    color: #ffa500; /* Orange color */
    margin: 0;
    padding: 5px;
}

header nav {
    float: right;
    margin-top: 10px;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-left: 10px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px 20px;
    border-radius: 5px;
}

header nav ul li a:hover,
header nav ul li a.btn {
    background: #0779e4;
}


.form-box {
    width: 100%;
    height: 100%;
    position: absolute;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.button-box {
    width: 220px;
    margin: 35px auto;
    position: relative;
/*     box-shadow: 0 0 20px 9px #ff61241f;  */
    box-shadow: 0 0 20px 9px #ffa5001f; 
    border-radius: 30px;
}

.toggle-btn {
    padding: 10px 30px;
    cursor: pointer;
    background: transparent;
    border: 0;
    outline: none;
    position: relative;
    color: #000;
    font-size: 16px;
}

#btn {
    position: absolute;
    width: 110px;
    height: 100%;
/*    background: #ff6600; */
    background: #ffa500;
    border-radius: 30px;
    transition: .5s;
}

.input-group {
    top: 180px;
    position: absolute;
    width: 280px;
    transition: .5s;
}

.input-field {
    width: 100%;
    padding: 10px 0;
    margin: 5px 0;
    border-left: 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid #999;
    outline: none;
    background: transparent;
}

.submit-btn {
    width: 85%;
    padding: 10px 30px;
    cursor: pointer;
    display: block;
    margin: auto;
/*    background: #ff6600; */
    background: #ffa500;
    border: 0;
    border-radius: 30px;
    color: #fff;
    font-weight: bold;
    transition: .3s;
}

.submit-btn:hover {
    background: #e55b00;
}

#login {
    left: 50px;
}

#signup {
    left: 450px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer .social-media {
    list-style: none;
    padding: 0;
}

footer .social-media li {
    display: inline;
    margin: 0 10px;
}

footer .social-media a {
    color: #fff;
    text-decoration: none;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #ffa500; /* Orange color on hover */
    color: #121212;
}

/*
.user-info:hover::after {
    content: attr(data-email);
    position: absolute;
    top: 35px;
    left: 0;
    background-color: #333333;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}
*/