/* Common styles for authentication pages */
body {
    padding-top: 60px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 0px 20px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar-logo img {
    height: 40px;
}

.auth-button {
    background-color: #7367f0;
    color: white;
    border-radius: 20px;
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
}

.auth-button:hover {
    background-color: #5e50ee;
    color: white;
    text-decoration: none;
}

.auth-container {
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 500px;
    max-width: 100%;
    position: relative;
    opacity: 90%;
    margin-top: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    border-radius: 20px;
    padding: 10px 15px 10px 40px;
    border: 1px solid #ced4da;
}

.form-control:focus {
    border-color: #7367f0;
    box-shadow: 0 0 0 0.2rem rgba(115, 103, 240, 0.25);
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
}

.btn-primary, .btn-google {
    border-radius: 20px;
    padding: 10px 15px;
    width: 100%;
    margin-bottom: 10px;
}

.btn-primary {
    background-color: #7367f0;
    border-color: #7367f0;
}

.btn-primary:hover {
    background-color: #5e50ee;
    border-color: #5e50ee;
}

.btn-google {
    background-color: #db4437;
    border-color: #db4437;
    color: white;
}

.btn-google:hover {
    background-color: #c53929;
    border-color: #c53929;
    color: white;
}
