/* Importing Google Font Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 90%;
    max-width: 400px; /* Reduced max width to make the box less wide */
    background-color: #ffffff;
    border-radius: 8px;
    border: 2px solid #ffa500; /* Orange border */
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.1); /* Light orange shadow */
    overflow: hidden;
}

header {
    background-color: #ffffff;
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
}

.logo {
    max-width: 150px;
}

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.login-section {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

h1 {
    font-size: 24px;
    color: #333;
    text-align: center;
    font-weight: 600;
}

form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

label {
    margin-bottom: 10px;
    font-weight: 600;
}

input[type="email"] {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

button {
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

button:hover {
    background-color: #555;
}

.newsletter-intel {
    margin-top: 20px;
    text-align: center;
}

.newsletter-intel p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.intel-logo {
    max-width: 150px;
}

.message {
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
}
