
.full-page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

.container {
    //width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: bold;
    padding: 0 20px;
    border-bottom: 2px solid #ccc;
}

.tab {
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    color: #666;
}

.tab.active {
    border-bottom: 3px solid black;
    color: black;
}

.form-container {
    display: none;
}

.form-container.active {
    display: block;
}

.input-container {
    position: relative;
    width: 90%;
    margin: 10px auto;
}

.input-container input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.button {
    width: 90%;
    padding: 12px;
    margin: 10px auto;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    display: block;
    background-color: black;
    color: white;
}

.google-btn {
    background-color: #db4437;
    color: white;
    font-size: 14px;
    padding: 12px;
    margin-top: 10px;
}

.forgot-password {
    margin-top: 10px;
}

.messages {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}

