/* styles.css */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.connect-box {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
}

.connect-box h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #111827;
}

.connect-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    font-size: 16px;
    border: 2px solid #E5E7EB;
    border-radius: 5px;
    background-color: transparent;
    color: #1E40AF;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.connect-button img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.microsoft-teams:hover {
    background-color: #2B6CB0;
    color: white;
}

.zoom:hover {
    background-color: #0E76A8;
    color: white;
}
body.login-sign-forget {
  background-image: url('img/BG.png');
  background-size: cover;     /* Ensures the image covers the entire area */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents the image from repeating */
      background-color: #2148C0;
}
 body.login-sign-forget.signup input {
    padding: 15px !important;
    border: 1px solid #a4a4a4;
} 
body.login-sign-forget.dashbrd .connect-box button.connect-button {
    border: 1px solid #464DB6;
}
body.login-sign-forget.dashbrd .lgot{
    cursor: pointer;
    background: #9f0000;
    padding: 10px 20px;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    margin-top: 20px;
}